body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #ffffff;
    border-top-color: gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.gif-container {
    max-width: 400px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    border: 5px solid gold;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.gif-container img {
    display: block;
    width: 100%;
    height: auto;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    flex-grow: 1;
    min-width: 150px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.action-button.map-button {
    background-color: gold;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.action-button.pix-button {
    background-color: #B8860B;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
    transform: translateY(-2px);
}

.action-button svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.action-button .pix-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
#toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #000000;
    border: 2px solid gold;
    color: gold;
    padding: 5px 11px;
    border-radius: 12px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 99999;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

#toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

#toast button {
    padding: 3px 15px;
    background: gold;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}